home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_300 / 338_01 / cglbdec.h < prev    next >
Text File  |  1980-01-01  |  1KB  |  45 lines

  1. /*
  2.  *    68000 C compiler
  3.  *
  4.  *    Copyright 1984, 1985, 1986 Matthew Brandt.
  5.  *  all commercial rights reserved.
  6.  *
  7.  *    This compiler is intended as an instructive tool for personal use. Any
  8.  *    use for profit without the written consent of the author is prohibited.
  9.  *
  10.  *    This compiler may be distributed freely for non-commercial use as long
  11.  *    as this notice stays intact. Please forward any enhancements or questions
  12.  *    to:
  13.  *
  14.  *        Matthew Brandt
  15.  *        Box 920337
  16.  *        Norcross, Ga 30092
  17.  */
  18.  
  19. /*      global declarations     */
  20.  
  21. extern FILE             *input,
  22.                         *list,
  23.                         *output;
  24.  
  25. extern int              lineno;
  26. extern int              nextlabel;
  27. extern int              lastch;
  28. extern int              lastst;
  29. extern char             lastid[20];
  30. extern char             laststr[MAX_STLP1];
  31. extern long             ival;
  32. extern double           rval;
  33.  
  34. extern TABLE            gsyms,
  35.                         lsyms;
  36. extern SYM              *lasthead;
  37. extern struct slit      *strtab;
  38. extern int              lc_static;
  39. extern int              lc_auto;
  40. extern struct snode     *bodyptr;       /* parse tree for function */
  41. extern int              global_flag;
  42. extern TABLE            defsyms;
  43. extern int              save_mask;      /* register save mask */
  44.  
  45.